home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / exec / exec_intern.h < prev    next >
C/C++ Source or Header  |  1996-09-12  |  786b  |  38 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: exec_intern.h,v 1.2 1996/08/01 17:41:27 digulla Exp $
  4.     $Log: exec_intern.h,v $
  5.     Revision 1.2  1996/08/01 17:41:27  digulla
  6.     Added standard header for all files
  7.  
  8.     Desc:
  9.     Lang:
  10. */
  11. #ifndef __EXEC_INTERN_H__
  12. #define __EXEC_INTERN_H__
  13.  
  14. /* This is a short file that contains a few things every Exec function
  15.     needs */
  16.  
  17. #ifndef AROS_OPTIONS_H
  18. #   include <aros/options.h>
  19. #endif
  20. #ifndef AROS_SYSTEM_H
  21. #   include <aros/system.h>
  22. #endif
  23. #ifndef AROS_LIBCALL_H
  24. #   include <aros/libcall.h>
  25. #endif
  26. #ifndef EXEC_EXECBASE_H
  27. #   include <exec/execbase.h>
  28. #endif
  29. #ifndef CLIB_EXEC_PROTOS_H
  30. #   include <clib/exec_protos.h>
  31. #endif
  32.  
  33. #if UseLVOs
  34. extern void __AROS_InitExecBase (void);
  35. #endif
  36.  
  37. #endif /* __EXEC_INTERN_H__ */
  38.